home *** CD-ROM | disk | FTP | other *** search
/ DOpus Plus / DOpus Plus.iso / Tutorial / C Guide / Code_Fragments / includes / LaunchIPC.h
C/C++ Source or Header  |  1998-09-17  |  526b  |  28 lines

  1.  
  2. #include <dos.h>
  3.  
  4. #include <proto/dos.h>
  5. #include <proto/exec.h>
  6. #include <proto/intuition.h>
  7.  
  8. #include <exec/execbase.h>
  9.  
  10. #include <dopus/ipc.h>
  11. #include <dopus/memory.h>
  12. #include <pragmas/dopus_pragmas.h>
  13.  
  14.  
  15. typedef struct
  16. {
  17.          ULONG           a4;
  18.          struct Library *library;
  19.          struct Library *module;
  20.          IPCData        *ipc;
  21.          void           (*entry)(IPCData *, APTR );
  22.          APTR           data;
  23.                  
  24. }   StartupData;
  25.  
  26. extern struct Library *DOpusBase;
  27. extern APTR mempool;
  28.